home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen…rary 5 (Internal Edition) / Apple R&P Lib Internal v5.0.iso / 6-Developer Demos / Developer Demos-Ed. / Macintosh School® CD-ROM Demo / Macintosh SchoolÆ CD-ROM Demo / card_90744.txt < prev    next >
Text File  |  1990-08-14  |  918b  |  47 lines

  1. -- card: 90744 from stack: in
  2. -- bmap block id: 90964
  3. -- flags: 4000
  4. -- background id: 69011
  5. -- name: Exception Report
  6.  
  7.  
  8. -- part 1 (button)
  9. -- low flags: 00
  10. -- high flags: 0000
  11. -- rect: left=0 top=0 right=343 bottom=513
  12. -- title width / last selected line: 0
  13. -- icon id / first selected line: 0 / 0
  14. -- text alignment: 1
  15. -- font id: 0
  16. -- text size: 12
  17. -- style flags: 0
  18. -- line height: 16
  19. -- part name: 
  20.  
  21.  
  22. -- part 2 (button)
  23. -- low flags: 00
  24. -- high flags: 0000
  25. -- rect: left=11 top=23 right=38 bottom=26
  26. -- title width / last selected line: 0
  27. -- icon id / first selected line: 5068 / 5068
  28. -- text alignment: 1
  29. -- font id: 0
  30. -- text size: 12
  31. -- style flags: 0
  32. -- line height: 16
  33. -- part name: Close
  34. ----- HyperTalk script -----
  35. on mouseDown
  36.   set icon of me to "Close Box Hi"
  37. end mouseDown
  38.  
  39. on mouseLeave
  40.   set icon of me to "Close Box"
  41. end mouseLeave
  42.  
  43. on mouseUp
  44.   set icon of me to "Close Box"
  45.   pop card
  46. end mouseUp
  47.